
body{
    width: 100%;
    height: auto;
    /* background-color: rgba(44, 42, 42, 0.5); 0.5 = 50% transparency */
      font-family: "poppins", sans-serif;
      color: #fff;
      transition: background 0.5s ease, color 0.5s ease;
      background-color: #2c2a2a;
    }

    /* Sidebar (Desktop) */
    .sidebar {
      width: 250px;
      background: #1b1b1b;
      padding: 20px;
      position: fixed;
      height: 100%;
      text-align: center;
    }

    .sidebar .profile-pic {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 6px solid rgb(59, 58, 58);
      object-fit: cover;
      margin-top: 1rem; 
    }
  

@media(max-width:768px){
  body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }
  .content{
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .hero{
    height: 670px !important;
  }
}


    .sidebar h2 {
      margin: 15px 0;
      font-size: 20px;
    }

    .sidebar nav ul {
      list-style: none;
      margin-top: 20px;
    }

    .sidebar nav ul li {
      margin: 16px ;
      margin-left: -1rem;
    }

    .sidebar nav ul li a {
      text-decoration: none;
      color: #aaa;
      transition: 0.3s;
    }

    .sidebar nav ul li a.active,
    .sidebar nav ul li a:hover {
      color: #0f0;
      border: none;
    }
    nav ul li a {
  text-decoration: none;
  color: #aaa; /* default grey */
  transition: 0.3s;
}

nav ul li a.active {
  color: #0f0;  /* bright green when active */
  
}


    .socials {
      margin-top: 30px;
    }

    .socials a {
      margin: 0 5px;
      color: #aaa;
      text-decoration: none;
    }
    .socials a:active,.socials a:focus{
      color: #0f0;
      border: none;
    }

    .theme-btn {
      margin-top: 20px;
      padding: 10px;
      font-size: 20px;
      background: none;
      border: 2px solid #0f0;
      border-radius: 50%;
      color: #0f0;
      cursor: pointer;
      transition: 0.3s;
    }

    .theme-btn:hover {
      background: #0f0;
      color: #111;
    }

    /* Top Navbar (Mobile) */
    .topnav {
      display: none;
      width: 100%;
      background: #1b1b1b;
      padding: 10px 15px;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      display: none;
      
      
    }
    @media (max-width:768px){
        .topnav{
            display: block;
        }
        .topnav h2 {
      font-size: 1.5rem;
      color: #fff;
      padding-top: .4em;
    }

    }
    @media (max-width:800px){
      .topnav h2{
         font-size: 1.6rem !important;
      }
      html, body {
  margin: 0;
  padding: 0;
  display: flex;
  
  color: #fff;
  transition: background 0.5s ease, color 0.5s ease;
  box-sizing: border-box !important;
}

    }
    
    .topnav h2 {
      font-size: 1.5rem;
      color: rgb(217, 247, 217);
      padding-top: .4em;
    }
    .socials i{
      font-size: 1.4rem;
    }

    .topnav nav ul {
      list-style: none;
      display: flex;
      gap: 15px;
      padding-top: 1em;
    }

    .topnav nav ul li a {
      text-decoration: none;
      color: #aaa;
      transition: 0.3s;
      font-size: 20px;
    }
    .topnav button{
      font-size: 20px;
  
    }

    .topnav nav ul li a.active,
    .topnav nav ul li a:hover {
      color: #aaa;
    }

    .topnav .theme-btn {
      font-size: 18px;
      padding: 5px;
      border-radius: 50%;
    }

    /* Content */
    .content {
      margin-left: 250px;
      padding: px;
      width: calc(100% - 250px);
      transition: margin-left 0.3s ease;
    }

    /* Hero */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: url('../image/IMG_20250825_225638.jpg') no-repeat center/cover;
      text-align: center;
      gap: 1rem;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: multiply;
      
      
    }
    
    .hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('../image/IMG_20250825_225638.jpg') no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
}
.hero::before {
  content: "";
  position: absolute;
  top: var(--scrollY, 0);
  left: 0;
  width: 100%;
  height: 120%;
  background: url('/image/IMG_20250825_225638.jpg') no-repeat center/cover;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  z-index: -1;
  transition: transform 0.1s linear;
}


    .hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  overflow: hidden; /* keeps blur edges clean */
  z-index: 0;
}
.topnav button{
  background: none;
  border: none;
  color: #FFf;
 cursor: pointer;
 outline: none;
 transition: transform 0.3s ease;
}

    /* When button is active */
.topnav    button.active {
      color: #0f0; /* changes color */
      transform: rotate(); /* rotates */
    }
  



.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url('/image/IMG_20250825_225638.jpg') no-repeat center/cover;
  background-blend-mode: multiply;
  filter: blur(6px) brightness(0.9); /* blur + faint watercolor darkness */
  z-index: -1; /* keeps it behind your text */
}
@media (max-width:768px){
  .hero::before{
    filter:blur(1px) brightness(1.0)!important;
  }
  .hero{
    height: 100vh !important;
  }
}
    @media (max-width:768px){
      .hero h1 span {
        font-size: 2.5rem !important;
        font-weight: 540;
      }
      .hero h1{
        font-size: 2.5rem !important;
        font-weight: 540;
      }
      .hero h3{
        margin-top: 5rem;
        font-size: 1.6rem;
      }
    }

    .hero h1 span {
      color: #0f0;
      font-size:4.10rem;
      
      
    }
    
    .hero h1{
        font-size: 4.10rem;
        
    }
    .hero p{
        font-size: 1.3rem;
    }
    .hero svg{
    color: #fff;
    position: absolute;
    bottom: 4%;
    left: 49%;
    transform: translate(-50%,-50%);
    font-weight: bold;
    animation: bounce .9s infinite;
    
}
@keyframes bounce{
    0%, 100% {
        transform: translateY(0);
    }
    50%{
        transform:translateY(10px);
    }
}

  .hero  .btn {
      display: inline-block;
      padding: 10px 30px;
      background: none;
      border: 2px solid #0f0;
      color: #0f0;
      margin-top: 20px;
      text-decoration: none;
      border-radius: 30px;
      transition: 0.3s;
    }

.hero    .btn:hover {
      background: #0f0;
      color: #111;
    }
  .hero  .btn {
  display: inline-block;
  padding: 10px 30px;
  background: none;
  border: 2px solid #0f0;
  color: #0f0;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  position: relative;
  overflow: hidden; /* required for shimmer */
}

/* shimmer effect */
.hero .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.hero .btn:hover {
  background: #0f0;
  color: #111;
}

.hero .btn:hover::before {
  left: 100%; /* shimmer sweeps across */
}


    /* Stats */
   

    /* About */
    .about {
      background:#2a2a2a ;
      padding: 40px;
      border-radius:2px;
      height: 570px;
      
    }

    .about h2 {
      color: #fff;
      margin-bottom: 15px;
    }
    @media (max-width: 768px) {
      body {
        background-color: #2e2e2e;
        margin:0;
        padding: 0;
        width: 100%;

      }
      .about{
        width: 100%;
      
      }
      section{
        margin: 0 !important;
      }
    }
    @media (max-width:800px){
      #pp{
       font-size: 10rem !important;
      }
    }

    .about ul {
      list-style: none;
      margin-top: 10px;
    }

    .about ul li {
      margin: 5px 0;
    }

    /* Light Theme */
    body.light-theme {
      background: #f5f5f5;
      color: #111;
    }

    body.light-theme .sidebar {
      background: #fff;
      color: #111;
    }

    body.light-theme .sidebar nav ul li a {
      color: #333;
    }

    body.light-theme .sidebar nav ul li a.active,
    body.light-theme .sidebar nav ul li a:hover {
      color: #0a8;
    }

    body.light-theme .content {
      background: #fdfdfd;
    }

    body.light-theme .btn {
      border-color: #0a8;
      color: #0a8;
    }

    body.light-theme .btn:hover {
      background: #0a8;
      color: #fff;
    }

    body.light-theme .stat h2 {
      color: #0a8;
    }

    body.light-theme .topnav {
      background: #fff;
    }

    body.light-theme .topnav h2 {
      color: #0a8;
    }

    body.light-theme .topnav nav ul li a {
      color: #333;
    }

    body.light-theme .topnav nav ul li a:hover {
      color: #0a8;
    }
  .hero  h1 span {
      color: #0f0;
      border-right: 2px solid #0f0; /* typing cursor */
      padding-right: 5px;
      animation: blink 0.7s infinite;
    }
    @keyframes blink {
      50% { border-color: transparent; }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .sidebar {
        display: none;
      }
      .topnav {
        display: flex;
        flex-direction: row; 
        padding-right: 3px !important;
      }
      .topnav nav ul li a{
        font-size: 24px !important;
      }
      
      .content {
        margin-left: 0;
        width: 100%;
        padding: 80px 20px 20px; /* extra top padding because navbar is fixed */
      }
      .service{
        height: 1160px !important;
      }
      .service h1{
        font-size:4.3rem !important;
      }
      .service p{
         font-weight: 545 !important;
        padding-top: 1.0rem !important;
      }
      .service{
        padding-top: 4rem !important;
      }
      .go br{
        display: none !important;
        
      }
      .go p{
        font-size:17px !important ;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
      }
    }
    .service{
      width: 100%;
      height: 740px;
      display: flex;
      padding-top: 5rem;
      align-items: center;
      flex-direction: column;
      background-color: rgba(87, 86, 86, 0.5); 0.5 = 50% transparency 
    }
    .service h1{
    position: relative;  
  font-size: 7.5rem;
  color: rgba(246, 242, 242, 0.1); /* transparent */
  font-weight: bold;
  pointer-events: none; /* so it doesn’t block clicks */
  user-select: none;    /* can’t select text */
  z-index: 0;  
}
.service p{
  position: absolute;
  font-weight: 548;
  letter-spacing: 1px;
  font-size: 2.1rem;
  padding-top: 2.7rem;
}
.header::after {
  content: "";
  display: block;
  width: 70px;               /* 👈 adjust line width here */
  height: 2px;                /* thickness of line */
  background-color: #0f0;     /* line color */
  margin: 1.9px auto 0;         /* space above + center line */
}
.whatido{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-left: 4rem;
  margin-right: 4rem;
}
@media (max-width:768px){
  .whatido{
    grid-template-columns: 1fr !important;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    margin-top: 2.5rem !important;
  }
  .gre br{
    display: none !important;
  }
  .paint {
    width: 150px !important;
  }
  .gre span{
    font-size: 16px !important;
  }
  .gre h3{
    font-size: 1.3rem !important;
    color: #fff !important;
  }
}
.paint{
  width: 60px;
  height: 61px;
  background-color: rgba(38, 38, 41, 0.85);
  backdrop-filter: blur(5px) brightness(1.2);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #aaa;
}
.paint i{
  font-size: 2.2rem;
  color:rgb(117, 211, 117);
}
.ux{
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.gre{
  display: flex;
  flex-direction: column;
}
.gre h3{
  font-size: 1.2rem;
    color: rgb(222, 228, 222);
}
.gre span{
  font-size: 14.5px;
  color:rgb(222, 228, 222);
}
@media(max-width:768px){
  .summary{
    width: 100% !important;
    height: 2200px !important;
  }
  .summary h1{
    font-size: 4.3rem !important;
  }
   .summary p{
         font-weight: 545 !important;
        padding-top: 1.0rem !important;
      }
      .summary{
        padding-top: 4rem !important;
      }
      .portfolio{
        padding-top: 4rem !important;
        
      }
      .portfolio h1{
        font-size: 4rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
      }
      .portfolio p{
        font-weight: 545 !important;
        padding-top: 1.0rem !important;
      }
      .portfolio{
        width: 100% !important;
        border-top: 1.3px solid #ccc !important;
      }
      .service{
       border-top: 1.3px solid #ccc !important; 
      }
      .mage{
        width: 100% !important;
        display: grid;
        grid-template-columns: 1fr !important;
      }
}
.summary{
  width: 100%;
  height: 1420px; 
  display: flex;
      padding-top: 5rem;
      align-items: center;
      flex-direction: column; 
}
.summary h1{
  position: relative;  
  font-size: 7.5rem;
  color: rgba(246, 242, 242, 0.1); /* transparent */
  font-weight: bold;
  pointer-events: none; 
  user-select: none;    
  z-index: 0;  
}
.summary p{
  position: absolute;
  font-weight: 548;
  letter-spacing: 1px;
  font-size: 2.1rem;
  padding-top: 2.7rem;
}
.edu{
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

}
.divide{
  display:flex;
  flex-direction: row;
  gap: 2.2rem;
}
.dior{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  
}
@media(max-width:768px){
  .edu{
    width: 100% !important;
    
  }
  .divide{
    display: flex;
    flex-direction: column !important;
    gap:1px !important ;
  }
  .bank{
    width: 100% !important;
    width: 360px !important;
  }
  .bank p{
    margin-top: -.9rem !important;
  }
}
.bank{
  width: 440px;
  height: 300px;
  background-color: #1a1919;
  border-radius: 5px;
  padding: 1.2rem;

}
.bank h3{
  font-size: 1rem;
  font-weight: 520;
  background-color:rgb(240, 76, 76);
  padding: 2px;
  width: 100px;
  border-radius: 6px;
  text-align: center;
}
.bank h2{
  font-size: 1.38rem;
  font-weight: 600;
  padding-top: 6px;
}
.bank h5{
  font-size: 18px;
  color:rgb(88, 249, 88);
  padding-top: 6px;
}
.bank p{
  font-size: 14px;
  margin-top: -2rem;
}
.portfolio{
   width: 100%;
  height: 1250px; 
  display: flex;
      padding-top: 5rem;
      align-items: center;
      flex-direction: column; 
      background-color: rgba(87, 86, 86, 0.5);
      
}
.portfolio h1{
  position: relative;  
  font-size: 7.5rem;
  color: rgba(246, 242, 242, 0.1); /* transparent */
  font-weight: bold;
  pointer-events: none; /* so it doesn’t block clicks */
  user-select: none;    /* can’t select text */
  z-index: 0;  
}
.portfolio p{
  position: absolute;
  font-weight: 548;
  letter-spacing: 1px;
  font-size: 2.1rem;
  padding-top: 2.7rem;
}
.skit {
  margin-top: 4rem;
  
}
.skit h6{
  font-size: 26px;
  font-weight: 530;
}
.skill{
  margin: 16px 0px;
}
.gr{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 3rem;
  
  
}
@media(max-width:768px){
  .gr{
    display: grid;
    grid-template-columns: 1fr !important;
    padding: 10px !important;
    
  }
  .skit h6{
    padding-left: 10px !important;
  }
  .skit{
    width: 100% !important;
  }
  .skill-bar{
    width: 100% !important;
  }
  .skill{
  width: 100% !important;
}
.pd{
  margin-top: 1.7rem !important;
}
}
.skill-name {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
      font-size: 18px;
      gap: 14rem;
      
    }
    
.skill-bar {
      background: #1a1919;
      height: 9px;
      border-radius: 6px;
      overflow: hidden;
      width: 430px;
      
    }
    
    
    .skill-per {
      background: #0f0;
      height: 100%;
      border-radius: 6px;
      width: 0; /* Start hidden */
      transition: width 2s ease; /* Smooth fill effect */
    }
    .pd{
      padding: 8px 21px;
      color: #aaa;
  border-radius: 50px;
  border: 1.4px solid #aaa;
  outline: none;
  margin-top: 3.8rem;
  background-color: #2a2a2a;
 }
 /* .pd:hover{
  color: #fff;
  background-color: rgb(184, 189, 184);
  border: none;
  font-weight: 600;
  padding: 9px 17px;
 }
 .pd:active,:focus{
  color: #2a2a2a;
 } */
.pd:active, :focus{
  color: #aaa;
  border: 1px solid #0f0;
}
.image-container {
  position: relative;
  width: 300px; /* adjust as needed */
  height: 230px;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:768px){
  
  .portfolio{
    height:2090px !important;
  }
  .redd{
    margin-top: 2rem !important;
    display: block !important;
    display: flex !important;
    flex-direction: column !important;
     gap: 1.3rem !important;
    
  }
  .mage{
    display: none !important;
  }
  .tija{
    border: 1.4px solid #aaa !important;
    height: 290px !important;
    width: 360px !important;
    border-radius: 6px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex;
  justify-content: center !important;
  align-items: center !important;
  }
  .over {
  position: absolute !important;
  bottom: -100% !important; /* hidden at first */
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.6) !important; /* light ash color */
  display: flex;
  align-items: center !important;   /* centers vertically */
  justify-content: center !important; /* centers horizontally */
  transition: bottom 0.5s ease !important;
  
}

  .over p {
  color: #fff !important;
  font-size: 1.3rem !important;
  font-weight:normal !important;
  opacity: 0 !important; /* hidden initially */
  transition: opacity 0.4s ease 0.3s !important; /* delay so text fades after overlay */
}
.tija:hover .over {
  bottom: 0 !important; /* overlay slides up */
}

.tija:hover .over p {
  opacity: 1 !important; /* text fades in */
}
}

.redd{
  display: none;
}
.image-container img {
  width: 100px;
  height: 80px;
  display: block;
  object-fit: cover;
  background-position: center;
  
}

.tija img{
  width: 150px !important;
  height: 100px !important;
  object-fit: cover;
}
.overlay {
  position: absolute;
  bottom: -100%; /* hidden at first */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* light ash color */
  display: flex;
  align-items: center;   /* centers vertically */
  justify-content: center; /* centers horizontally */
  transition: bottom 0.5s ease;
}

.overlay p {
  color: #fff;
  font-size: 1.3rem;
  font-weight:normal;
  opacity: 0; /* hidden initially */
  transition: opacity 0.4s ease 0.3s; /* delay so text fades after overlay */
}

.image-container:hover .overlay {
  bottom: 0; /* overlay slides up */
}

.image-container:hover .overlay p {
  opacity: 1; /* text fades in */
}
.mage{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 1rem;
  
}
#t2{
  height: 500px;
  
}
#t3{
  height: 500px;
  margin-top: -15rem;
}
#t4{
  margin-top: 1.95rem;
  height: 360px;
}
#t5{
  margin-top:-15rem;
}
#t6{
  position: absolute;
  right:3% ;
  margin-top: 34.5rem;
  height: 300px;
  
  
}
@media (max-width:768px){
  .testimonial h1{
        font-size:3.6rem !important;
      }
      .testimonial{
        padding-top: 4rem !important;
        height: 650px !important;
      }
      .testimonial p{
         font-weight: 545 !important;
        padding-top:.6rem !important;
      }
       .testimonial-container{
      width: 100% !important;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
      }
      
      
}
.testimonial{
  height: 750px;
   display: flex;
      padding-top: 5rem;
      align-items: center;
      flex-direction: column;
      width: 100%;
}
.testimonial h1{
    position: relative;  
  font-size: 7.5rem;
  color: rgba(246, 242, 242, 0.1); /* transparent */
  font-weight: bold;
  pointer-events: none; /* so it doesn’t block clicks */
  user-select: none;    /* can’t select text */
  z-index: 0;  
}
.testimonial p{
  position: absolute;
  font-weight: 548;
  letter-spacing: 1px;
  font-size: 2.3rem;
  padding-top: 2.7rem;
}
.testimonial-container {
      width: 100%;
      max-width: 900px;
      margin: 3rem auto 0;
      padding: 10px 0;
      display: block;
    }
    

    /* Testimonial card */
    .testimonial-card {
      background: #1a1919;
      color: #fff;
      border-radius: 6px;
      padding-right: 2rem;
      padding-left: 1.5rem;
      padding-top: 2.6rem;
       
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    min-height: 300px;
      
    }
    .testimonial-card:hover{
      box-shadow: 0 6px 14px rgba(0,0,0,0.6);
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }
    /* Stars */
    .testimonial-stars {
      color: #facc15;  /* yellow */
      font-size: 22px;
      margin-top: rem;
      letter-spacing: 3px;
      position: absolute;
      top: 82%;
    }

    /* Pagination outside */
    .testimonial-pagination {
      text-align: center;
      margin-top: 3rem;
    }

    /* Dots style */
    .testimonial-pagination .swiper-pagination-bullet {
      background: #ccc;
      opacity: 1;
      width: 12px;
      height: 12px;
      margin: 0 6px !important;
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    .testimonial-pagination .swiper-pagination-bullet-active {
      background: #0f0;  /* green */
      transform: scale(1.3);
    
    }
    .testimonial-header{
      display: flex;
      flex-direction: row;
      gap: 1rem;
      align-items: center;
    }
    .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    }
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .testimonial-name{
      display: flex;
      flex-direction: column;
      gap: 3px;
      position: relative;
    }
    .testimonial-name h3{
      font-size: 1.1rem;
      font-weight: 600;
      padding-top: 1rem;
    }
    .testimonial-name h5{
      font-size: 16px;
      color: #aaa;
      font-weight: 500;
      margin-top: -6px;
      
      
    }
    .testimonial-card h4{
      font-size:15px ;
      line-height: 1.6;
      color: #ddd;
      position: absolute;
      top: 44%;
      
    }
    @media(max-width:768px){
     .contact{
      height: 840px !important;
      padding-top: 4rem !important;
      width: 100% !important;
      border-top: 1.2px solid #aaa !important;
     } 
     .contact h1{
      font-size: 4.3rem !important;
     }
     .contact p{
      font-weight: 545 !important;
        padding-top: 1.0rem !important;
      }
     }
    
    .contact{
      width: 100%;
  height: 630px; 
  display: flex;
      padding-top: 5rem;
      align-items: center;
      flex-direction: column; 
      background-color: rgba(87, 86, 86, 0.5);
    }
    .contact h1{
       position: relative;  
  font-size: 7.5rem;
  color: rgba(246, 242, 242, 0.1); /* transparent */
  font-weight: bold;
  pointer-events: none; /* so it doesn’t block clicks */
  user-select: none;    /* can’t select text */
  z-index: 0;  
    }
    .contact p{
        position: absolute;
  font-weight: 548;
  letter-spacing: 1px;
  font-size: 2.1rem;
  padding-top: 2.7rem;
    }
    .heade::after {
  content: "";
  display: block;
  width: 70px;               /* 👈 adjust line width here */
  height: 2px;                /* thickness of line */
  background-color: #0f0;     /* line color */
  margin: .9px auto 0;         /* space above + center line */
}
.chane{
  color: #0f0;
  font-size: 1.3rem;
  padding-right: .5rem;
  
}
.address ul{
  list-style: none;
  
}
.address{
  color: #ccc;
  
}
.nh{
  display: flex;
  flex-direction: row;
  margin-top: 1.5rem;
  gap: 3rem;
}
@media(max-width:768px){
  .nh{
    display: flex !important;
    flex-direction: column !important;
  
  }
  .address ul{
    margin-left:  !important;
  }
  .inp{
    display: flex !important;
    flex-direction: column !important;
  }
  .send{
    
    width: 100% !important;
  }
  .need{
    width: 350px !important;
    height: 160px !important;
    padding-bottom: 6rem !important;
  }
  input{
    width: 350px !important;
  }
  .send button{
    margin-top: 2.5rem !important;
    margin-left: 0 !important;
    height: 45px !important;
    
  }
}
.add{
  font-size: 1.3rem;
  font-weight: 550;
  color: #ddd;
}
.send h4{
  font-size: 1.3rem;
  font-weight: 550;
  color: #ddd;
}
input{
  
  width: 310px;
  border-radius: 3px;
  border: none;
  outline: none;
  height: 36px;
  background-color: rgba(38, 38, 41, 0.85);
  padding-left: 7px;
  margin-top: .5rem;
}
.send{
  display: flex;
  flex-direction: column;
  
}
@media(max-width:768px){
  .send{
    margin-left: 1rem !important;
    width: 100% !important;
    margin-right: 1rem !important;
    
  }
  .send button{
    margin-top: 1.4rem !important;
  }
}
.inp{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  
}
.need{
  width: 635px;
  border-radius: 3px;
  border: none;
  outline: none;
  height: 150px;
  background-color: rgba(38, 38, 41, 0.85);
  padding-left: 7px;
  margin-top: 1.2rem;
  padding-bottom: 4.6rem;
}
.send button{
  width: 150px;
  height: 40px;
  border: none;
  outline: none;
  margin-left: 14rem;
  border-radius: 50px;
  background-color:#0f0;
  color: white;
  font-weight:bold;
  margin-top: 1.4rem;
}
.send button:hover{
  background-color:transparent ;
  border: 1.5px solid #0f0;
  color: #0f0;
  
}
.plot{
  margin-top: .5rem;
}
.bb{
  margin-top: 1.2rem;
}
.follow{
  margin-top: 1.2rem;
  font-weight: 550;
}
.icon{
  text-decoration: none;
  color: #aaa;
  font-size: 1.3rem;
  margin-top: .6rem;
  
}
.icon a {
  text-decoration: none;
  color: #aaa;

}

.copyright{
 width: 100%;
 height: 100px;
 line-height: 100px;
 display: flex;
 margin-left: -.8rem;
 justify-content: center;
 align-items: center;
 gap: 20rem;
}
.copyright h3{
  font-size: 18px;
  color: #ccc;
}
.copyright span{
  color: #0f0;
}
@media(max-width:768px){
  .copyright{
    height: 50px !important;
    line-height:50px  !important;
    margin-left: 0 !important;
    gap:5px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row !important;
  }
  .copyright h3{
    font-size: 11px !important;
  }
}
html {
  font-size: 100%;
}
@media (max-width: 1024px) {
  html { font-size: 100%; }
}
@media (max-width: 768px) {
  html { font-size: 80%; }
}
/* @media (max-width:956px){
  .service{
    height:800px !important;
  }
  
  .stat h2{
    font-size: 3.8rem !important;
  }
}
@media (max-width:804px){
  .service{
    height: 1200px !important;
  }
} */
 @media (max-width:1024px) and (min-width:768px){
  aside{
    display: none;
  }
  .topnav{
    display: block;
    display: flex;
    flex-direction: row;
  }
  .hero{
    width: 100%;
    height: 800px;
  }
  .content{
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
.go br{
  display: none !important;
}
.ux br{
  display: none !important;
}
.nh{
  gap: 1rem !important;
  /* display: grid !important;
  grid-template-columns: repeat(2,1fr) !important;
   */
}

.whatido{
   display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
}
.gr{
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
}
.service{
  height: 730px !important;
}
.summary{
  height: 1300px !important;
}
.copyright{
  gap: 16rem !important;
}
.summary{
  width: 100%;
}
.divide{
  display: flex;
  flex-direction: row !important;
  gap: 1rem !important;
}
.about h2{
  
  margin-left:4px !important;
}


/* .redd{
  display: grid !important;
  grid-template-columns: repeat(2,1fr) !important;
} */


 }

 @media (max-width:1280px) and (min-width:800px){
   #pp{
    width: 100% !important;
    font-size: 8rem !important;
   }
   .summary{
    width: 100% !important;
   }
   .bank{
    width: 420px !important;
   }
   .skit{
    width: 100% !important;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
   }
        
  }
  @media (max-width:1114px)and (min-width:705px){
    .ux br{
      display: none !important;
    }
    .go br{
      display: none !important;
    }
    .portfolio{
       width: 100% !important;
    }
    .copyright{
      gap: 13rem !important;
    }
    .nh{
      gap: 1rem !important;
      margin-left: 5px !important;
    }
    .image-container{
      width: 280px !important;
    }
  }